home *** CD-ROM | disk | FTP | other *** search
- /*
- * SaveIFF V1.0, 1993 Markus Moenig
- *
- * Save the frames/pics of the source project as IFF pictures.
- * The base name is the source project name + ".IFF".
- */
-
- OPTIONS RESULTS
-
- ADDRESS MAINACTOR
-
- ScreenToFront /* flip screen to front */
-
- /* print message */
-
- PrintAndStoreTXT "SaveIFF V1.0 saving frames/pics as IFF ..."
-
- GetSPName
-
- IF rc = 0 THEN DO /* check if project loaded */
-
- PARSE VAR RESULT firstname secondname . /* store name of the animation */
- /* or the names of the picture list */
-
- GetSPSaver
- PARSE VAR RESULT savertype savername . /* store saver module */
-
-
- SetSPSaver PIC IFF /* Set saver module to IFF */
-
- newname = firstname || ".IFF" /* new name = old one + ".IFF" */
-
- SelectAll /* select all frames/pictures */
-
- Save newname /* save em as IFF pics */
-
- SetSPSaver savertype savername /* restore old saver module */
-
- END
-